home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-09-18 | 632 b | 26 lines | [TEXT/????] |
- #include <adv.t>
- #include <std.t>
-
- startroom: room
- sdesc = "Starting Room"
- ldesc = "You are in the starting room. There is an exit to the east. "
- east = room2
- ;
-
- room2: room
- sdesc = "Another room"
- ldesc = "You are in another room. It is not very interesting here.
- A more interesting room lies to the west. "
- west = startroom
- ;
-
- figurine: item
- sdesc = "exquisite jade figurine"
- adesc = "an exquisite jade figurine"
- ldesc = "It's an exquisite jade figurine. You can't imagine how it
- got into this game. "
- location = room2
- noun = 'figurine'
- adjective = 'exquisite' 'jade'
- ;
-